Arch SectionPlane/ru

THIS COMMAND IS PART OF THE INTEGRATED BIM WORKBENCH IN V1.0
This page has been updated for that version.

Arch SectionPlane

Расположение в меню
Архитектура -> Плоскость сечения
Верстаки
Arch
Быстрые клавиши
S P
Представлено в версии
-
См. также
Draft Shape2DView, TechDraw NewArch

Описание

Этот инструмент помещает в текущий документ "что-то" секущей плоскости, которое определяет сечение или план. "Что-то" получает своё положение в соответствии с текущей рабочей плоскостью, и может быть перемещён и переориентирован через её перемещение и вращение, пока не получится требуемый двумерный вид. Секущая плоскость учитывает только определённый набор объектов. Выделенные в момент создания секущей плоскости добавляются в этот набор автоматически. Другие объекты могут быть позднее добавлены или удалены из объекта SectionPlane инструментами Arch Add component или Arch Remove component, или двойным кликом секущей плоскости в древе проекта.

The Section Plane object will only consider a certain set of objects. Objects that are selected when you create a Section Plane will be added to that set automatically. Other objects can later be added or removed from a SectionPlane object with the Arch Add component and Arch Remove component tools, or by double-clicking the Section Plane in the tree view.

Сама по себе плоскость сечения не создаст никакого вида набора своих объектов. Для этого вы должны либо создать Drawing DraftView, чтобы создать вид на странице чертежа, Draft Shape2DView для создания вида в самом 3D-документе, или TechDraw ArchView для создания представления на странице TechDraw.

Применение

  1. Если нужно, установить Draft Working Plane для отражения плоскости, на которой вы хотите разместить плоскость сечения.
  2. Выделить объекты, которые должны быть включены в сечение
  3. Нажмите кнопку SectionPlane или нажмите S, затем P
  4. Move/rotate Section Plane в правильное положение, если нужно.
  5. Выберите плоскость сечения, если она еще не выбрана.
  6. Используйте Drawing DraftView, Draft Shape2DView или TechDraw ArchView для создания вида.

Typical drawing workflow

The typical workflow to create a 2D drawing involves the following steps, also reflected in the buttons' order in the toolbar:

  1. Create a Section Plane, and place it correctly in the model. As described before.
  2. Create a drawing view with the 2D Drawing tool. A drawing view is simply a BuildingPart that has been modified to be recognized as a 2D drawing (and stripped of some attributes like level, height, etc). Using a BuildingPart has a few advantages: It defines a working plane, you can move it and it will also move its contents, and it has a "title" that shows in the viewport. But fundamentally, the drawing view is just a container for the components of your 2D drawing. If the Section Plane is selected before initiating the 2D Drawing command, both the section view and section cut objects mentioned in the next step are created automatically.
  3. Create a Section view and if needed, a Section cut from your Section Plane. Both tools produce a Shape2DView, but the first one in "solid" mode, which shows projected lines from what is viewed by the Section Plane, and the second one in "cut lines" mode, so it shows only the cut lines (the intersection between the Section Plane and the model). In plans and sections, you will want both, and give the section cut a bit thicker line width, in elevations you will typically only need the section view, as there is nothing to cut. Then, of course, you place both these objects, in the drawing view.
  4. Create all needed annotations like dimensions, texts, 2D linework, etc... and add them to the drawing view.
  5. Create a TechDraw page using the Page tool of the BIM Workbench. It will pop up a dialog to let you select an SVG file to use as a template (and remembers the last used template).
  6. Once you have your drawing view and your page, select both and press the View button. This will create a TechDraw view on the page, showing the contents of your drawing view.

Опции

  • С выбранным объектом сечения используйте инструмент Draft Shape2DView для создания объекта, представляющего вид сечения в документе.

Свойства

Data

SectionPlane

  • ДанныеOnly Solids: Если это true, объекты не твердых тел не будут учитываться в наборе.
  • ВидDisplay Length: Длина "чего-то" плоскости сечения на трехмерном виде. Не влияет на итоговый вид
  • ВидDisplay Height: Высота "чего-то" плоскости сечения в трехмерном виде. Не влияет на итоговый вид
  • ВидArrow Size: Размер стрелок в "чём-то" секущей плоскости в трёхмерном виде. Не влияет на итоговый вид
  • ВидCut View: Если это true, весь трёхмерный вид будет рассечён по месту этой секущей плоскости.
  • ВидClip view: Если это true, он будет обрезать вид до отображаемой высоты и длины плоскости сечения. Это эффективно превращает плоскость сечения в ортогональную камеру, ограничивая поле зрения. introduced in 0.19

The Arch SectionPlane with the ДанныеClip property set to true will behave like a camera, limiting the field of view.

View

SectionPlane

Tweaks

Alternative workflows

Scripting

Программирование

См. так же: Arch API и Основы составления скриптов в FreeCAD.

Инструмент SectionPlane может использоваться в макросах и в консоли Python с использованием следующих функций:

Section = makeSectionPlane(objectslist=None, name="Section")

Пример:

import FreeCAD, Draft, Arch

p1 = FreeCAD.Vector(0, 0, 0)
p2 = FreeCAD.Vector(2000, 0, 0)
baseline = Draft.makeLine(p1, p2)
baseline2 = Draft.makeLine(p1, -1*p2)

Wall1 = Arch.makeWall(baseline, length=None, width=150, height=2000)
Wall2 = Arch.makeWall(baseline2, length=None, width=150, height=1800)
Structure = Arch.makeStructure(length=1000, width=1000, height=200)
FreeCAD.ActiveDocument.recompute()

BuildingPart = Arch.makeBuildingPart([Wall1, Wall2])

Floor = Arch.makeFloor([BuildingPart])
Building = Arch.makeBuilding([Floor, Structure])
Site = Arch.makeSite(Building)
FreeCAD.ActiveDocument.recompute()

Section1 = Arch.makeSectionPlane([Wall1, Wall2])
Section2 = Arch.makeSectionPlane([Structure])
Section3 = Arch.makeSectionPlane([Site])
FreeCAD.ActiveDocument.recompute()